From: Ori Livneh Date: Mon, 13 Jul 2015 07:26:44 +0000 (-0700) Subject: Fix variable name (follows Ib2c5856d) X-Git-Tag: 1.31.0-rc.0~10799 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=1020ac4edc46fef237db68cff8e5b640e10a7f46;p=lhc%2Fweb%2Fwiklou.git Fix variable name (follows Ib2c5856d) Change-Id: I1c673110e35daa6d5e382fad0fd99d6e4daa9f73 --- diff --git a/includes/cache/LCStoreStaticArray.php b/includes/cache/LCStoreStaticArray.php index 6a597ca59e..fff9bab2e9 100644 --- a/includes/cache/LCStoreStaticArray.php +++ b/includes/cache/LCStoreStaticArray.php @@ -79,7 +79,7 @@ class LCStoreStaticArray implements LCStore { // [A]rray return array( 'a', array_map( function ( $v ) { return LCStoreStaticArray::encode( $v ); - }, $data ) ); + }, $value ) ); } throw new RuntimeException( 'Cannot encode ' . var_export( $value, true ) );